翻訳と辞書
Words near each other
・ Tokiwa Station
・ Token bus network
・ Token coin
・ Token Creek, Wisconsin
・ Token economy
・ Token Homemate Cup
・ Token money
・ Token of Darkness
・ Token passing
・ Token Racing
・ Token reconfiguration
・ Token ring
・ Tokenism
・ Tokenization
・ Tokenization (data security)
Tokenization (lexical analysis)
・ Tokenzone
・ Toker
・ Toker Dam
・ Tokers Green
・ Tokerud School
・ Toketee Falls
・ Toketee State Airport
・ Tokey Banta
・ Tokey Hill
・ Tokha
・ Tokha Chandeswori
・ Tokha municipality
・ Tokha Sarswoti
・ Tokheho


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Tokenization (lexical analysis) : ウィキペディア英語版
Tokenization (lexical analysis)

In lexical analysis, tokenization is the process of breaking a stream of text up into words, phrases, symbols, or other meaningful elements called tokens. The list of tokens becomes input for further processing such as parsing or text mining. Tokenization is useful both in linguistics (where it is a form of text segmentation), and in computer science, where it forms part of lexical analysis.
==Methods and obstacles==
Typically, tokenization occurs at the word level. However, it is sometimes difficult to define what is meant by a "word". Often a tokenizer relies on simple heuristics, for example:
* Punctuation and whitespace may or may not be included in the resulting list of tokens.
* All contiguous strings of alphabetic characters are part of one token; likewise with numbers
* Tokens are separated by whitespace characters, such as a space or line break, or by punctuation characters.
In languages that use inter-word spaces (such as most that use the Latin alphabet, and most programming languages), this approach is fairly straightforward. However, even here there are many edge cases such as contractions, hyphenated words, emoticons, and larger constructs such as URIs (which for some purposes may count as single tokens). A classic example is "New York-based", which a naive tokenizer may break at the space even though the better break is (arguably) at the hyphen.

Tokenization is particularly difficult for languages written in scriptio continua which exhibit no word boundaries such as Ancient Greek, Chinese,〔Huang, C., Simon, P., Hsieh, S., & Prevot, L. (2007)(Rethinking Chinese Word Segmentation: Tokenization, Character Classification, or Word break Identification )〕 or Thai.
Some ways to address the more difficult problems include developing more complex heuristics, querying a table of common special-cases, or fitting the tokens to a language model that identifies collocations in a later processing step.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Tokenization (lexical analysis)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.